home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1998 March / Software of the Month Club 1998 March.iso / mac / Business / PowerReplace 6.3 / Filter / 2. Char / min->MAJ < prev    next >
Text File  |  1996-08-03  |  655b  |  47 lines

  1. % Convert lowercase letter  to uppercase letter. 
  2. % For french text file, the lowercase letter with accent
  3. % is changed to corresponding uppercase letter without accent.
  4. % Guoniu Han, 1995/08/09
  5.  
  6. "a"     "A"
  7. "ê"     "A"
  8. "ë"     "A"
  9.  
  10. "b"     "B"
  11. "c"     "C"
  12. "ì"     "C"
  13. "d"     "D"
  14. "e"     "E"
  15. "Ä"     "E"
  16. "Å"     "E"
  17. "É"     "E"
  18. "æ"     "E"
  19.  
  20. "f"     "F"
  21. "g"     "G"
  22. "h"     "H"
  23. "i"     "I"
  24. "ò"     "I"
  25. "ö"     "I"
  26.  
  27. "j"     "J"
  28. "k"     "K"
  29. "l"     "L"
  30. "m"     "M"
  31. "n"     "N"
  32. "o"     "O"
  33. "Ü"     "O"
  34. "p"     "P"
  35. "q"     "Q"
  36. "r"     "R"
  37. "s"     "S"
  38. "t"     "T"
  39. "u"     "U"
  40. "¥"     "U"
  41. "ƒ"     "U"
  42.  
  43. "v"     "V"
  44. "w"     "W"
  45. "x"     "X"
  46. "y"     "Y"
  47. "z"     "Z"